home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / tcp_ip / jnos / cmdshelp / trace < prev    next >
Text File  |  1994-08-09  |  1KB  |  35 lines

  1.  
  2. trace [<iface> [off | <btio>]
  3.  
  4.      Controls packet tracing by the interface drivers. Specific bits
  5. enable  tracing  of the various interfaces and the amount of
  6. information produced.  Tracing is controlled on a per-interface basis;
  7. without arguments, 'trace' gives a list of all defined interfaces and
  8. their tracing status.  Output can be limited to a single interface by
  9. specifying it, and the control flags can be change by specifying them
  10. as well.
  11.  
  12.      The flags are given as a hexadecimal number which is interpreted
  13. as follows:
  14.  
  15. B    - Broadcast filter flag. If set, only packets specifically
  16.        addressed to this node will be traced; broadcast packets will
  17.        not be displayed.
  18. T    - Controls type of tracing:
  19. 0    - Protocol headers are decoded, but data is not displayed
  20. 1    - Protocol headers are decoded, and data (but not the headers
  21.        themselves) are displayed  as ASCII characters, 64 characters/line.
  22.        Unprintable characters are displayed as periods.
  23. 2    - Protocol headers are decoded, and the entire packet (headers AND
  24.        data) is also displayed  in hexadecimal and ASCII, 16 characters per
  25.        line.
  26. I    - Enable tracing of input packets if 1, disable if 0
  27. O    - Enable tracing of output packets if 1, disable if 0
  28.  
  29.  
  30.           Example:     # Trace all incoming packets on port1 and display with
  31.                        # headers
  32.                        trace port1 0111
  33.  
  34.  
  35.